This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
~Olga Kiveluchekakol 26.Jan.04 12:25 PM a Web browser Applications Development6.5iSeries
Basically I'm trying to compare some dates and then set actions accordingly.
Say If today >22/12/03 or Today<= 09/01/04 then
X + y = z
or else
if today > 09/01/04 or today <= 23/01/04 then *** This is where the code seems to fail
some action
else
other action.
end if
My code is below :
If Today() > profileDoc.Dec2nd(0) Or Today() <= profileDoc.Jan1st(0) Then
gnWebDoc.thisbatch = profileDoc.Jan1st(0)
Elseif Today() > profileDoc.Jan1st(0) Or Today() <= profileDoc.Jan2nd(0) Then *** This part would evaluate true if today is 26/01/04 which I do not want to happen!
gnWebDoc.thisbatch = profileDoc.Jan2nd(0)
Else
gnWebDoc.thisbatch = profileDoc.Feb1st(0)
End If